home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / database / arv134e.zip / ARVEXPO.DOK < prev    next >
Text File  |  1994-12-05  |  4KB  |  179 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9. ═════════════════════════════════════════════════════════════════════════
  10.  
  11.  
  12.  
  13.                                ARVExpo
  14.  
  15.                   Data export tool for ARV data files
  16.  
  17.  
  18.  
  19. ═════════════════════════════════════════════════════════════════════════
  20.  
  21.  
  22. Syntax :
  23.  
  24. ARVExpo <destfile> [/1x] [/2y] [/3z] [/Tn] [/G] [/D] [/F] [/C<file>] [/Pp]
  25.  
  26. with x,y,z each being one character or empty.
  27.  
  28. <destfile> is the name of the text file to export the data to.
  29.            Any existing file with the same name will be overwritten.
  30.  
  31. Use /G, /D, /F to specify what to export.
  32. Use /Px (x=0..9) to specify the partition to export. Consult ARV.DOK to
  33. learn about partitions.
  34.  
  35. The ARVEXPO.EXE and ARV.EXE program version numbers should always be
  36. the same, i.e. use the ARVEXPO.EXE which came together with you current
  37. ARV version.
  38.  
  39. Data will be output alphabetically sorted, one record per line.
  40. Text fields will be enclosed in "x" characters (default is x="), the
  41. fields will be separated by "y" characters (default is y=,). Dates
  42. will be enclosed in "z" characters (default is z empty).
  43.  
  44. The date format can be selected by setting n:
  45.  
  46.       1 = TT.MM.JJ
  47.       2 = JJ.MM.TT
  48.       3 = 19JJMMTT (the preferred DBASE date format).
  49.  
  50. Default is n=3.
  51.  
  52. On /C, see below.
  53.  
  54. The default values are set so that the resulting files may be
  55. read by DBASE using APPEND FROM <file> DELIMITED.
  56.  
  57. FIELDS being exported, one lines per record:
  58. -------------------------------------------
  59.  
  60. Groups (/G) :
  61.  
  62. Name[40] Short[8] NrOfDisks GroupSizeInBytes
  63.  
  64. Disks (/D) :
  65.  
  66. Id[20] FreeSpaceInBytes Group[40] GroupShort[8] Drive[1] Storage[10]
  67. CreatedOn[Date]
  68.  
  69. Dateien (/F) :
  70.  
  71. Name[12] Size Date[Date] Disk[10] Storage[10] Group[40]
  72. GroupShort[8] Comment[79]
  73.  
  74. The field length is given in square brackets. All other fields, except
  75. for date entries, are numeric values.
  76.  
  77.  
  78. The ARVExpo control file (specified by /C<file>)
  79. ------------------------------------------------
  80.  
  81. By default, all records will be exported.
  82.  
  83. You may choose only to export files belonging to a certain group, or
  84. groups containing some character string in their names. What to export,
  85. has to be specified using a control file.
  86. This control file has be have the file extension .AEC (ArvExpo Control).
  87. Give the file name without this extension with the /C option.
  88.  
  89. Example:
  90.          Arvexpo arv.out /Ccontrol
  91.  
  92. will read control statements from control.aec.
  93.  
  94. Valid statements are (case is ignored)
  95.  
  96. EXPORTIERE G
  97. EXPORTIERE D
  98. EXPORTIERE F
  99.    - Specify what to export (same as /G, /D, /F)
  100.  
  101. TEXT_IN  "x
  102.    - as /1x. The " is mandatory.
  103.  
  104. TRENNER "y
  105.    - as /2y. The " is mandatory.
  106.  
  107. DATUM_IN "z
  108.    - as /3z. Do not omit the ".
  109.  
  110. DATUM_TYP n
  111.    - as /Tn. n=1,2 or 3 (date export format).
  112.  
  113.  
  114. GOHNE <Grp>{,<Grp>}
  115. GMIT <Grp>{,<Grp>}
  116.     - records belonging to groups with short name <Grp> will not /
  117.       will be exported.
  118.       Examples:
  119.        gohne x-rated,mod,txt
  120.        gmit dbase
  121.  
  122. DOHNE <Dsk>{,<Dsk>}
  123. DMIT <Dsk>{,<Dsk}
  124.     - records referencing to disks with id <Dsk> will not / will be
  125.       exported.
  126.       Examples:
  127.        dohne Mod 1,Mod 4
  128.  
  129. FOHNE <Fil>{,<Fil>}
  130. FMIT <Fil>{,<Fil>}
  131.      - records referencing to files with the name <Fil> will not /
  132.        will be exported.
  133.        Examples:
  134.         FOHNE ABCDEF.TXT
  135.         FMIT STUFF.ARJ
  136.  
  137. Whenever <Grp>, <Dsk> or <Fil> ends with a *, it matches all values
  138. beginning with the pattern <Grp>/<Dsk>/<Fil>.
  139.  
  140. Examples:
  141.  
  142.   fohne story*
  143.   dohne mod*,xrated*
  144.  
  145. Special statements are
  146. GOHNE ALLE which is the same as gohne *
  147. GMIT ALLEN which is the same as gmit *
  148. DOHNE ALLE which is the same as dohne *
  149. DMIT ALLEN which is the same as dmit *
  150. FOHNE ALLE which is the same as fohne *
  151. FMIT ALLEN which is the same as fmit *
  152.  
  153. The control file is treated as if
  154.  
  155.  GMIT ALLEN
  156.  DMIT ALLEN
  157.  FMIT ALLEN
  158.  
  159. is placed at the very top of it.
  160. If you want only your MOD - disk data to be exported, the correct
  161. statements are:
  162.  
  163. dohne alle
  164. dmit mod*
  165.  
  166. i.e. you will have to exclude all disks then re-include the disks wanted.
  167.  
  168. Lines beginning with * or ; will be ignored.
  169.  
  170. ARVEXPO reads the ARV environment variable to determine where to
  171. look for ARV data files.
  172.  
  173. Example:
  174.  
  175.  SET ARV=c:\arv_zwo
  176.  
  177. ARVExpo will look for data files (.ARV) in c:\arv_zwo.
  178.  
  179.